home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 25
/
CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso
/
CUCD
/
Magazine
/
C_Tutorial
/
Part-4
/
clip.h
< prev
next >
Wrap
C/C++ Source or Header
|
1997-08-31
|
497b
|
15 lines
/* clip.c and clip.h */
/* A separate compilation unit for the clipping functions */
/* In clip.h: declare public things (i.e., the functions) */
/* In clip.c: make the actual definitions */
#include<intuition/intuition.h>
/* Set a clip region on a specified part of window */
int setClipSized(struct Window*, struct Rectangle*);
/* Set a clip region on internal part of window */
int setClipInternal(struct Window*);
/* Remove the clip region from a window */
void removeClip(struct Window*);